home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-11 / cliped01.zip / README.DOC < prev   
Text File  |  1993-01-04  |  4KB  |  96 lines

  1.  
  2.                                CLIPEDIT v 1.01
  3.                  A dBase-III-Type EDIT for dBase/Clipper Files
  4.                           Written by Steve Badaracco
  5.                                    10/8/87
  6.  
  7.      CLIPEDIT v1.01 is a high speed editing package, which simulates the
  8.      dBase III EDIT command, with some extra features.
  9.      CLIPEDIT v1.01 is being introduced into the public domain.  That is, you
  10.      can copy the program all you want, and give it to whomever you want.
  11.      However, if you use this program, I am asking that a $10 donation be
  12.      sent to me, the author.  If you for some reason feel that $10 is too
  13.      much, substitute an amount that you think the program is worth.
  14.      Please send all donations to:
  15.  
  16.                               Steve Badaracco
  17.                               48 Park Street
  18.                               Willimantic, CT  06226
  19.  
  20.  
  21.      CLIPEDIT is distributed in two forms, CLIPEDIT.EXE and CLIPEDIT.OBJ.
  22.  
  23.      -> CLIPEDIT.EXE is a standalone program.  It recognizes eight command
  24.         line parameters: the first is the database file, the following
  25.         seven (optional) are Clipper index files (NTX).  File extensions are
  26.         required, and full path to each file may be specified. Program
  27.         requires 200k memory.
  28.         SYNTAX: [d:][path]CLIPEDIT [d:][path]<dbfile.ext>
  29.                 [[d:][path]<ntxfile1.ext> [. . .[d:][path]<ntxfile7.ext>]]
  30.  
  31.      -> CLIPEDIT.OBJ is a linkable module written in Clipper code.
  32.         It requires Clipper Autumn '86 version, since it uses many
  33.         advanced commands not included in earlier versions.
  34.         MEMO.LIB must also be included at link time, to support the
  35.         editing of memos.
  36.         No parameters are recognized.  Similar to dBase's EDIT command,
  37.         CLIPEDIT will USE the open database file in the currently selected
  38.         work area, and up to seven index files (as many as are open).
  39.         Calling CLIPEDIT does not move the record pointer.
  40.         All variables used are PRIVATE; they will not interfere with
  41.         existing variables of the same name in the calling program.
  42.         The following function keys are used:
  43.             F1....:  Set to EDIT_HLP, reset to HELP after session
  44.             F2....:  Set to ^W, reset to null after session
  45.             F3..F6:  Set to various functions, reset to null after session
  46.         Default colors are: W/N (B if ISCOLOR()) , N/W.  To override
  47.         these with your own color selections, simply declare the following
  48.         four variables BEFORE calling CLIPEDIT: COLA, COLB, COLC, COLD.
  49.         For example, to select  W+/B,GR+/RB  declare:
  50.             COLA = 'W+'
  51.             COLB = 'B'
  52.             COLC = 'GR+'
  53.             COLD = 'RB'
  54.         CALL SYNTAX:  DO CLIPEDIT
  55.         LINK SYNTAX:  PLINK86  FILE  <yourprg>,CLIPEDIT  LIB  CLIPPER,MEMO
  56.                       (CLIPEDIT.OBJ must be in the default directory.)
  57.  
  58.  
  59.  
  60.                                      -2-
  61.  
  62.  
  63.  
  64.      Help is available both in the EXE file and the module, by pressing F1.
  65.      Information will be displayed about the use of the function keys:
  66.  
  67.          F1 - THIS SCREEN
  68.  
  69.          F2 - SAVE CURRENT PAGE AND EXIT TO DOS
  70.  
  71.          F3 - FIND A RECORD BY INDEX
  72.               Option only available if you have opened index files.
  73.               Search will be based on the primary index.
  74.  
  75.          F4 - PRINT CURRENT RECORD TO DOS DEVICE LPT1:
  76.               Be sure printer is online.
  77.  
  78.          F5 - EDIT MEMO FIELD
  79.               Option only available if database contains memo field(s).
  80.  
  81.          F6 - DELETE CURRENT RECORD
  82.               Will tag/untag record for deletion, pending a PACK operation.
  83.  
  84.      Read the information in the Clipper documentation about field editing
  85.      keys.  For example, ^U will not tag for deletion, as in dBase III.
  86.      Instead, it will undo a change if the cursor is still in the field.
  87.  
  88.      Update for version 1.01: corrected problem in CLIPEDIT.OBJ, DBF was
  89.      being closed upon exiting to calling prg.
  90.  
  91.      Hopefully this is good enough documentation to get you using CLIPEDIT.
  92.      However, if you are still having problems, write to me at the above
  93.      address to get the answers.  And don't forget the $10 donation!
  94.  
  95.      Happy CLIPEDITing. . .
  96.